net/http.http2FrameHeader.StreamID (field)
51 uses
net/http (current package)
h2_bundle.go#L1567: StreamID uint32
h2_bundle.go#L1603: if h.StreamID != 0 {
h2_bundle.go#L1604: fmt.Fprintf(buf, " stream=%d", h.StreamID)
h2_bundle.go#L1643: StreamID: binary.BigEndian.Uint32(buf[5:]) & (1<<31 - 1),
h2_bundle.go#L1953: fh.Type, fh.StreamID,
h2_bundle.go#L1956: if fh.StreamID != fr.lastHeaderStream {
h2_bundle.go#L1959: fh.StreamID, fr.lastHeaderStream))
h2_bundle.go#L1962: return fr.connError(http2ErrCodeProtocol, fmt.Sprintf("unexpected CONTINUATION for stream %d", fh.StreamID))
h2_bundle.go#L1970: fr.lastHeaderStream = fh.StreamID
h2_bundle.go#L1999: if fh.StreamID == 0 {
h2_bundle.go#L2128: if fh.StreamID != 0 {
h2_bundle.go#L2263: if fh.StreamID != 0 {
h2_bundle.go#L2301: if fh.StreamID != 0 {
h2_bundle.go#L2366: if fh.StreamID == 0 {
h2_bundle.go#L2371: return nil, http2streamError(fh.StreamID, http2ErrCodeProtocol)
h2_bundle.go#L2425: if fh.StreamID == 0 {
h2_bundle.go#L2457: return nil, http2streamError(fh.StreamID, http2ErrCodeProtocol)
h2_bundle.go#L2564: if fh.StreamID == 0 {
h2_bundle.go#L2617: if fh.StreamID == 0 {
h2_bundle.go#L2645: if fh.StreamID == 0 {
h2_bundle.go#L2699: if pp.StreamID == 0 {
h2_bundle.go#L3006: return nil, http2StreamError{mh.StreamID, http2ErrCodeProtocol, invalid}
h2_bundle.go#L3013: return nil, http2StreamError{mh.StreamID, http2ErrCodeProtocol, err}
h2_bundle.go#L3046: if f.StreamID == 0 {
h2_bundle.go#L5337: if sc.inGoAway && (sc.goAwayCode != http2ErrCodeNo || f.Header().StreamID > sc.maxClientStreamID) {
h2_bundle.go#L5341: return sc.countError("data_flow", http2streamError(f.Header().StreamID, http2ErrCodeFlowControl))
h2_bundle.go#L5382: if f.StreamID != 0 {
h2_bundle.go#L5397: case f.StreamID != 0: // stream-level flow control
h2_bundle.go#L5398: state, st := sc.state(f.StreamID)
h2_bundle.go#L5415: return sc.countError("bad_flow", http2streamError(f.StreamID, http2ErrCodeFlowControl))
h2_bundle.go#L5429: state, st := sc.state(f.StreamID)
h2_bundle.go#L5440: sc.closeStream(st, http2streamError(f.StreamID, f.ErrCode))
h2_bundle.go#L5581: id := f.Header().StreamID
h2_bundle.go#L5742: id := f.StreamID
h2_bundle.go#L5755: if st := sc.streams[f.StreamID]; st != nil {
h2_bundle.go#L5811: if err := sc.checkPriority(f.StreamID, f.Priority); err != nil {
h2_bundle.go#L5919: if err := sc.checkPriority(f.StreamID, f.http2PriorityParam); err != nil {
h2_bundle.go#L5922: sc.writeSched.AdjustStream(f.StreamID, f.http2PriorityParam)
h2_bundle.go#L5975: return nil, nil, sc.countError("bad_connect", http2streamError(f.StreamID, http2ErrCodeProtocol))
h2_bundle.go#L5988: return nil, nil, sc.countError("bad_path_method", http2streamError(f.StreamID, http2ErrCodeProtocol))
h2_bundle.go#L9399: cs := rl.streamByID(f.StreamID)
h2_bundle.go#L9408: StreamID: f.StreamID,
h2_bundle.go#L9437: StreamID: f.StreamID,
h2_bundle.go#L9709: cs := rl.streamByID(f.StreamID)
h2_bundle.go#L9715: if f.StreamID >= neverSent {
h2_bundle.go#L9746: StreamID: f.StreamID,
h2_bundle.go#L9754: StreamID: f.StreamID,
h2_bundle.go#L9763: StreamID: f.StreamID,
h2_bundle.go#L9965: cs := rl.streamByID(f.StreamID)
h2_bundle.go#L9966: if f.StreamID != 0 && cs == nil {
h2_bundle.go#L9985: cs := rl.streamByID(f.StreamID)
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |